home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / fckdemo1.zip / GLOBARG1.LST < prev    next >
File List  |  1994-04-12  |  524b  |  22 lines

  1. c
  2. c                       FORCHECK
  3. c               Global Argument Verification 1
  4.  
  5.         PROGRAM Draw
  6.         CALL Plot (x, y, 12)
  7.         END
  8.  
  9.  
  10.         SUBROUTINE Plot (x, y, ipen)
  11.         CALL Draw (x, y, ipen)
  12.         IF (ipen .GT. 10) ipen = ipen - 10
  13.         END
  14.  
  15.  FORCHECK PC V11.10  MS5 compiler emulation  20-Jan-94  11:31:40  page: 1
  16.  GLOBARG1.FOR  
  17.  
  18.  global program analysis:
  19.  
  20.    PLOT, referenced in DRAW, argument no  3
  21.  **[388 I] possible illegal assignment, act.arg. is constant or expr.
  22.